projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
425c281
)
Handle non-error signals in emacsclient --eval (Bug#10989)
author
Noam Postavsky
<npostavs@gmail.com>
Sun, 2 Sep 2018 22:56:38 +0000
(18:56 -0400)
committer
Noam Postavsky
<npostavs@gmail.com>
Tue, 4 Sep 2018 22:50:29 +0000
(18:50 -0400)
* lisp/server.el (server-process-filter): Handle any signal, not just
errors.
lisp/server.el
patch
|
blob
|
history
diff --git
a/lisp/server.el
b/lisp/server.el
index 77850e49da3f9e0dc0fea46c6458b4eaa98a651e..fd024480bdd6e9cb67e4a1d7e1ea5b0c2c6ebfd6 100644
(file)
--- a/
lisp/server.el
+++ b/
lisp/server.el
@@
-1297,7
+1297,7
@@
The following commands are accepted by the client:
(server-execute-continuation proc))))
;; condition-case
- (
error
(server-return-error proc err))))
+ (
t
(server-return-error proc err))))
(defun server-execute (proc files nowait commands dontkill create-frame-func tty-name)
;; This is run from timers and process-filters, i.e. "asynchronously".